home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / RCS / fwrite.c,v < prev    next >
Text File  |  1991-12-02  |  3KB  |  143 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.2.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.2
  10. date     91.05.29.16.49.45;  author shirriff;  state Exp;
  11. branches 1.2.1.1;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     88.06.10.16.23.53;  author ouster;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19. 1.2.1.1
  20. date     91.12.02.19.58.30;  author kupfer;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24.  
  25. desc
  26. @@
  27.  
  28.  
  29. 1.2
  30. log
  31. @Changed fread, fwrite to work a chunk at a time instead of a character
  32. at a time.
  33.  
  34. @
  35. text
  36. @/* 
  37.  * fwrite.c --
  38.  *
  39.  *    Source code for the "fwrite" library procedure.
  40.  *
  41.  * Copyright 1988 Regents of the University of California
  42.  * Permission to use, copy, modify, and distribute this
  43.  * software and its documentation for any purpose and without
  44.  * fee is hereby granted, provided that the above copyright
  45.  * notice appear in all copies.  The University of California
  46.  * makes no representations about the suitability of this
  47.  * software for any purpose.  It is provided "as is" without
  48.  * express or implied warranty.
  49.  */
  50.  
  51. #ifndef lint
  52. static char rcsid[] = "$Header: /sprite/src/lib/c/stdio/RCS/fwrite.c,v 1.1 88/06/10 16:23:53 ouster Exp Locker: shirriff $ SPRITE (Berkeley)";
  53. #endif not lint
  54.  
  55. #include "stdio.h"
  56.  
  57. /*
  58.  *----------------------------------------------------------------------
  59.  *
  60.  * fwrite --
  61.  *
  62.  *    This procedure outputs binary data to a buffered stream.
  63.  *
  64.  * Results:
  65.  *    The return value is the number of complete items actually written.
  66.  *    It may be less than numItems if an error condition was encountered;
  67.  *    in this case, there may be an additional partial item output after
  68.  *    the complete items.
  69.  *
  70.  * Side effects:
  71.  *    Up to numItems*size bytes are written into the stream from memory at
  72.  *    buf.
  73.  *
  74.  *----------------------------------------------------------------------
  75.  */
  76.  
  77. int
  78. fwrite(bufferPtr, size, numItems, stream)
  79.     register char *bufferPtr;    /* Origin of items to be written on stream.
  80.                  * Must contain numItems*size bytes. */
  81.     int size;            /* Size of each item to be written. */
  82.     int numItems;        /* Number of items to be written. */
  83.     register FILE *stream;    /* Stream where bytes are to be written. */
  84. {
  85.  
  86.     register int num, byteCount, itemCount;
  87.  
  88.     for (itemCount = 0; itemCount < numItems; itemCount++) {
  89.         for (byteCount = size; byteCount > 0;) {
  90.             if (stream->writeCount <=1 || stream->flags & STDIO_LINEBUF) {
  91.                 if (fputc(*bufferPtr, stream) == EOF) {
  92.                     return(itemCount);
  93.                 }
  94.                 bufferPtr++;
  95.                 byteCount--;
  96.             } else {
  97.                 num = stream->writeCount-1 < byteCount ? stream->writeCount-1
  98.                         : byteCount;
  99.                 bcopy(bufferPtr, stream->lastAccess+1, num);
  100.                 stream->writeCount -= num;
  101.                 stream->lastAccess += num;
  102.                 bufferPtr += num;
  103.                 byteCount -= num;
  104.             }
  105.         }
  106.     }
  107.     return(numItems);
  108. }
  109. @
  110.  
  111.  
  112. 1.2.1.1
  113. log
  114. @Initial branch for Sprite server.
  115. @
  116. text
  117. @d17 1
  118. a17 1
  119. static char rcsid[] = "$Header: /sprite/src/lib/c/stdio/RCS/fwrite.c,v 1.2 91/05/29 16:49:45 shirriff Exp $ SPRITE (Berkeley)";
  120. @
  121.  
  122.  
  123. 1.1
  124. log
  125. @Initial revision
  126. @
  127. text
  128. @d17 1
  129. a17 1
  130. static char rcsid[] = "$Header: atoi.c,v 1.1 88/04/28 17:20:23 ouster Exp $ SPRITE (Berkeley)";
  131. a49 1
  132.     register int itemCount, byteCount;
  133. d51 2
  134. d54 17
  135. a70 6
  136.     for (byteCount = 0; byteCount < size; byteCount++) {
  137.         if (putc(*bufferPtr, stream) == EOF) {
  138.         return(itemCount);
  139.         }
  140.         bufferPtr++;
  141.     }
  142. @
  143.